In [1]:
from ovation.session import connect
from ovation.core import delete_entity

We manually collect a list of files to delete


In [3]:
entities = []

Connection


In [ ]:
email = input('Ovation email: ')

In [ ]:
session = connect(email)

Delete files

Looping through the list of entities, we call session.delete for each one


In [ ]:
for id in entities:
    d = delete_entity(session, id)